From: kaikli <75146125+kaikli@users.noreply.github.com> Date: Wed, 18 Dec 2024 06:33:00 +0000 (+0100) Subject: fix dev application name X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~30^2^2~152^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=a1362049c76dc0cda3beb8165e25338307278a61;p=nextcloud-desktop.git fix dev application name keep application name and short name the same for the dev and prod build or some migration logic will work differently for each build Signed-off-by: kaikli <75146125+kaikli@users.noreply.github.com> --- diff --git a/NEXTCLOUD.cmake b/NEXTCLOUD.cmake index e2632dbcf..85a46b38b 100644 --- a/NEXTCLOUD.cmake +++ b/NEXTCLOUD.cmake @@ -1,6 +1,8 @@ +# keep the application name and short name the same or different for dev and prod build +# or some migration logic will behave differently for each build if(NEXTCLOUD_DEV) set( APPLICATION_NAME "NextcloudDev" ) - set( APPLICATION_SHORTNAME "NextDev" ) + set( APPLICATION_SHORTNAME "NextcloudDev" ) set( APPLICATION_EXECUTABLE "nextclouddev" ) set( APPLICATION_ICON_NAME "Nextcloud" ) else()